* krb5_libinit.c: Changed USE_HARDCODED_FALLBACK_ERROR_TABLES macro to !USE_BUNDLE_ER...
authorAlexandra Ellwood <lxs@mit.edu>
Fri, 7 Mar 2003 21:25:32 +0000 (21:25 +0000)
committerAlexandra Ellwood <lxs@mit.edu>
Fri, 7 Mar 2003 21:25:32 +0000 (21:25 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15267 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/ChangeLog
src/lib/krb5/krb5_libinit.c

index 06d082f97bef49dc0e4aff31b54b7b6e822a75ce..55bcc2fa2d51e64573c6e1ff62750fe01629695d 100644 (file)
@@ -1,3 +1,9 @@
+2003-03-07  Alexandra Ellwood  <lxs@mit.edu>
+
+    * krb5_libinit.c: Changed USE_HARDCODED_FALLBACK_ERROR_TABLES macro 
+    to !USE_BUNDLE_ERROR_STRINGS so Darwin based builds get com_err
+    style error tables.
+
 2003-03-06  Alexandra Ellwood <lxs@mit.edu>
 
     * krb5_libinit.c: Removed Mac OS X header goober.  Conditionalize
index 296d957fafda794097a54fa947066af4fcf37d60..6b84754cfb29b8c687a5340cae26a9f7f2bbd233 100644 (file)
@@ -23,7 +23,7 @@ krb5_error_code krb5int_initialize_library (void)
 {
        
        if (!initialized) {
-#if !TARGET_OS_MAC || USE_HARDCODED_FALLBACK_ERROR_TABLES
+#if !USE_BUNDLE_ERROR_STRINGS
            add_error_table(&et_krb5_error_table);
            add_error_table(&et_kv5m_error_table);
            add_error_table(&et_kdb5_error_table);
@@ -48,7 +48,7 @@ void krb5int_cleanup_library (void)
        krb5_stdcc_shutdown();
 #endif
        
-#if !TARGET_OS_MAC || USE_HARDCODED_FALLBACK_ERROR_TABLES
+#if !USE_BUNDLE_ERROR_STRINGS
        remove_error_table(&et_krb5_error_table);
        remove_error_table(&et_kv5m_error_table);
        remove_error_table(&et_kdb5_error_table);