aboutsummaryrefslogtreecommitdiffstats
path: root/version_info.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2010-05-25 00:35:44 +0000
committerGuy Harris <guy@alum.mit.edu>2010-05-25 00:35:44 +0000
commit36623bcb712ad6553c7c33ff92d69130e62aec1d (patch)
tree23818f5c9d00bffc5d4317f7f0d5fd36508dd58d /version_info.c
parent9bafe2064358245a0d85d3e1a3da0ec0cbe31598 (diff)
From H.sivank: GtkOSXApplication support.
Call the various flavors of OS X integration just "OS X integration", not anything with "IGE" in it - it appears that, in some places, "ige-mac-integration" refers only to the older Carbon-based functions, although the library still appears to be called -ligemacintegration. Update the URLs for the information about the OS X integration libraries. Clean up help message for --with-pcap-remote. Clean up white space a bit. Speaking of white space, it's "Mac OS X", not "MacOS X". svn path=/trunk/; revision=32941
Diffstat (limited to 'version_info.c')
-rw-r--r--version_info.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/version_info.c b/version_info.c
index ab484cb88c..2fb40d0ac0 100644
--- a/version_info.c
+++ b/version_info.c
@@ -510,18 +510,18 @@ get_runtime_version_info(GString *str, void (*additional_info)(GString *))
#ifdef HAVE_OS_X_FRAMEWORKS
Gestalt(gestaltSystemVersion, &macosx_ver);
- /* The following functions are only available in MacOS 10.4+ */
+ /* The following functions are only available in Mac OS 10.4+ */
if(macosx_ver >= 0x1040) {
Gestalt(gestaltSystemVersionMajor, &macosx_major_ver);
Gestalt(gestaltSystemVersionMinor, &macosx_minor_ver);
Gestalt(gestaltSystemVersionBugFix, &macosx_bugfix_ver);
- g_string_append_printf(str, " (MacOS %ld.%ld.%ld)",
+ g_string_append_printf(str, " (Mac OS %ld.%ld.%ld)",
(long)macosx_major_ver,
(long)macosx_minor_ver,
(long)macosx_bugfix_ver);
} else {
- g_string_append_printf(str, " (MacOS X < 10.4 [%lx])",
+ g_string_append_printf(str, " (Mac OS X < 10.4 [%lx])",
(long)macosx_ver);
/* See Apple's Gestalt Manager Reference for meanings
* of the macosx_ver values. */