summaryrefslogtreecommitdiff
blob: 9044bb1f708bb0337af892a3ef642a9b55b290c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
--- config/configure.in.orig	2012-02-04 13:20:17.730436149 +0100
+++ config/configure.in	2012-02-04 13:21:05.333936874 +0100
@@ -12,6 +12,20 @@
     CXXFLAGS="$CXXFLAGS -I$x_includes"
 fi
 
+#
+# On hpux10 both x_includes and x_libraries seem to be set to ""
+# This causes compiler options like '-I' and '-L', which break
+# the build.  So, we avoid empty strings here.
+#
+if test -z "$x_includes"
+then
+    x_includes=.
+fi
+if test -z "$x_libraries"
+then
+   x_libraries=.
+fi
+
 dnl
 dnl Added a proper check for the snprintf() function
 dnl
@@ -381,22 +395,6 @@
 AC_SUBST(USE_MOD_VERSIONS)
 dnl  Check for usleep().  Currently, only HP-UX doesn't have it.
 AC_CHECK_FUNCS(usleep)
-
-#
-# On hpux10 both x_includes and x_libraries seem to be set to ""
-# This causes compiler options like '-I' and '-L', which break
-# the build.  So, we avoid empty strings here.
-#
-if test -z "$x_includes"
-then
-    x_includes=.
-fi
-if test -z "$x_libraries"
-then
-   x_libraries=.
-fi
-
-
 AC_SUBST(host_dir)
 AC_OUTPUT(\
   Makefile:config/Makefile.top.in \