@@ -145,6 +145,12 @@ all::
145
145
#
146
146
# Define NEEDS_LIBICONV if linking with libc is not enough (Darwin).
147
147
#
148
+ # Define NEEDS_LIBINTL_BEFORE_LIBICONV if you need libintl before libiconv.
149
+ #
150
+ # Define NO_INTPTR_T if you don't have intptr_t nor uintptr_t.
151
+ #
152
+ # Define NO_UINTMAX_T if you don't have uintmax_t.
153
+ #
148
154
# Define NEEDS_SOCKET if linking with libc is not enough (SunOS,
149
155
# Patrick Mauritz).
150
156
#
@@ -1320,6 +1326,61 @@ ifeq ($(uname_S),Minix)
1320
1326
NO_CURL =
1321
1327
NO_EXPAT =
1322
1328
endif
1329
+ ifeq ($(uname_S ) ,NONSTOP_KERNEL)
1330
+ # Needs some C99 features, "inline" is just one of them.
1331
+ # INLINE='' would just replace one set of warnings with another and
1332
+ # still not compile in c89 mode, due to non-const array initializations.
1333
+ CC = cc -c99
1334
+ # Disable all optimization, seems to result in bad code, with -O or -O2
1335
+ # or even -O1 (default), /usr/local/libexec/git-core/git-pack-objects
1336
+ # abends on "git push". Needs more investigation.
1337
+ CFLAGS = -g -O0
1338
+ # We'd want it to be here.
1339
+ prefix = /usr/local
1340
+ # Our's are in ${prefix}/bin (perl might also be in /usr/bin/perl).
1341
+ PERL_PATH = ${prefix}/bin/perl
1342
+ PYTHON_PATH = ${prefix}/bin/python
1343
+
1344
+ # As detected by './configure'.
1345
+ # Missdetected, hence commented out, see below.
1346
+ # NO_CURL = YesPlease
1347
+ # Added manually, see above.
1348
+ NEEDS_SSL_WITH_CURL = YesPlease
1349
+ HAVE_LIBCHARSET_H = YesPlease
1350
+ NEEDS_LIBICONV = YesPlease
1351
+ NEEDS_LIBINTL_BEFORE_LIBICONV = YesPlease
1352
+ NO_SYS_SELECT_H = UnfortunatelyYes
1353
+ NO_D_TYPE_IN_DIRENT = YesPlease
1354
+ NO_HSTRERROR = YesPlease
1355
+ NO_STRCASESTR = YesPlease
1356
+ NO_FNMATCH_CASEFOLD = YesPlease
1357
+ NO_MEMMEM = YesPlease
1358
+ NO_STRLCPY = YesPlease
1359
+ NO_SETENV = YesPlease
1360
+ NO_UNSETENV = YesPlease
1361
+ NO_MKDTEMP = YesPlease
1362
+ NO_MKSTEMPS = YesPlease
1363
+ # Currently libiconv-1.9.1.
1364
+ OLD_ICONV = UnfortunatelyYes
1365
+ NO_REGEX = YesPlease
1366
+ NO_PTHREADS = UnfortunatelyYes
1367
+
1368
+ # Not detected (nor checked for) by './configure'.
1369
+ # We don't have SA_RESTART on NonStop, unfortunalety.
1370
+ COMPAT_CFLAGS += -DSA_RESTART=0
1371
+ # Apparently needed in compat/fnmatch/fnmatch.c.
1372
+ COMPAT_CFLAGS += -DHAVE_STRING_H=1
1373
+ NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease
1374
+ NO_NSEC = YesPlease
1375
+ NO_PREAD = YesPlease
1376
+ NO_MMAP = YesPlease
1377
+ NO_POLL = YesPlease
1378
+ NO_INTPTR_T = UnfortunatelyYes
1379
+ # Bug report 10-120822-4477 submitted to HP NonStop development.
1380
+ MKDIR_WO_TRAILING_SLASH = YesPlease
1381
+ # RFE 10-120912-4693 submitted to HP NonStop development.
1382
+ NO_SETITIMER = UnfortunatelyYes
1383
+ endif
1323
1384
ifneq (,$(findstring MINGW,$(uname_S ) ) )
1324
1385
pathsep = ;
1325
1386
NO_PREAD = YesPlease
@@ -1556,6 +1617,9 @@ ifdef NEEDS_LIBICONV
1556
1617
else
1557
1618
ICONV_LINK =
1558
1619
endif
1620
+ ifdef NEEDS_LIBINTL_BEFORE_LIBICONV
1621
+ ICONV_LINK += -lintl
1622
+ endif
1559
1623
EXTLIBS += $(ICONV_LINK) -liconv
1560
1624
endif
1561
1625
ifdef NEEDS_LIBGEN
@@ -1716,6 +1780,9 @@ endif
1716
1780
ifdef NO_IPV6
1717
1781
BASIC_CFLAGS += -DNO_IPV6
1718
1782
endif
1783
+ ifdef NO_INTPTR_T
1784
+ COMPAT_CFLAGS += -DNO_INTPTR_T
1785
+ endif
1719
1786
ifdef NO_UINTMAX_T
1720
1787
BASIC_CFLAGS += -Duintmax_t=uint32_t
1721
1788
endif
0 commit comments