diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2014-02-22 20:42:39 -0500 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2014-02-22 20:42:39 -0500 |
commit | 2c65856b7b444a5e804d4f694438e7444811d26b (patch) | |
tree | 95d33a392784e0b19ee19b37a8311492edd0f6ab | |
parent | fb05f3ce83d225dd0f39f8860ce04082753e9e98 (diff) | |
download | postgresql-2c65856b7b444a5e804d4f694438e7444811d26b.tar.gz postgresql-2c65856b7b444a5e804d4f694438e7444811d26b.zip |
configure.in: Use dnl in place of # where appropriate
The comment added by ed011d9754fd4b76eac0eaa8c057fcfc0c302a6a used #,
which means it gets copied into configure, but it doesn't make sense
there. So use dnl, which gets dropped when creating configure.
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | configure.in | 8 |
2 files changed, 4 insertions, 8 deletions
diff --git a/configure b/configure index 6ad165f3abb..122ace7e397 100755 --- a/configure +++ b/configure @@ -10780,10 +10780,6 @@ rm -rf conftest* fi - # Autoconf 2.69's AC_SYS_LARGEFILE believes it's a good idea to #define - # _DARWIN_USE_64_BIT_INODE, but it isn't: on OS X 10.5 that activates a - # bug that causes readdir() to sometimes return EINVAL. On later OS X - # versions where the feature actually works, it's on by default anyway. fi diff --git a/configure.in b/configure.in index aa23f9b8a0f..0f3e0ccdd0c 100644 --- a/configure.in +++ b/configure.in @@ -1155,10 +1155,10 @@ esac # defines can affect what is generated for that. if test "$PORTNAME" != "win32"; then AC_SYS_LARGEFILE - # Autoconf 2.69's AC_SYS_LARGEFILE believes it's a good idea to #define - # _DARWIN_USE_64_BIT_INODE, but it isn't: on OS X 10.5 that activates a - # bug that causes readdir() to sometimes return EINVAL. On later OS X - # versions where the feature actually works, it's on by default anyway. + dnl Autoconf 2.69's AC_SYS_LARGEFILE believes it's a good idea to #define + dnl _DARWIN_USE_64_BIT_INODE, but it isn't: on OS X 10.5 that activates a + dnl bug that causes readdir() to sometimes return EINVAL. On later OS X + dnl versions where the feature actually works, it's on by default anyway. AH_VERBATIM([_DARWIN_USE_64_BIT_INODE],[]) fi |