Closed
Bug 293590
Opened 20 years ago
Closed 20 years ago
./modules/plugin/base/public/nptypes.h need ifdef for HPUX
Categories
(Firefox Build System :: General, defect)
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 239465
People
(Reporter: stefan_blobner, Unassigned)
Details
User-Agent: Mozilla/5.0 (X11; U; HP-UX 9000/785; en-US; rv:1.8a6) Gecko/20050119
Build Identifier: Mozilla/5.0 (X11; U; HP-UX 9000/785; en-US; rv:1.7.7) Gecko/20050510 Firefox/1.0.3
The Firefox 1.0.3 build fails on HP-UX due to a missing #ifdef in nptypes.h:
Building deps for
/mnt/firefox/mozilla/modules/plugin/base/src/nsPluginNativeWindow.cpp
/opt/aCC/bin/aCC -o nsPluginNativeWindow.o -c
-DXPCOM_TRANSLATE_NSGM_ENTRY_POINT=1 -DOSTYPE=\"HP-UXB.11\"
-DOSARCH=\"HP-UX\" -DHAVE_DEPENDENT_LIBS
-I../../../../dist/include/xpcom -I../../../../dist/include/xpconnect
-I../../../../dist/include/string -I../../../../dist/include/java
-I../../../../dist/include/pref -I../../../../dist/include/necko
-I../../../../dist/include/caps -I../../../../dist/include/intl
-I../../../../dist/include/uconv -I../../../../dist/include/unicharutil
-I../../../../dist/include/dom -I../../../../dist/include/gfx
-I../../../../dist/include/content -I../../../../dist/include/widget
-I../../../../dist/include/mimetype -I../../../../dist/include/oji
-I../../../../dist/include/exthandler
-I../../../../dist/include/docshell -I../../../../dist/include/webshell
-I../../../../dist/include/windowwatcher
-I../../../../dist/include/imglib2 -I../../../../dist/include/layout
-I../../../../dist/include/js -I../../../../dist/include/locale
-I../../../../dist/include/gtkxtbin -I../../../../dist/include/plugin
-I../../../../dist/include
-I/mnt/firefox/mozilla/objects/dist/include/nspr -I.
-Wc,-ansi_for_scope,on -DNDEBUG -DTRIMMED -O
-I/opt/gnome/include/gtk-1.2 -I/opt/gnome/include/glib-1.2
-I/opt/gnome/lib/glib/include -DMOZILLA_VERSION=\"1.7.7\"
-DNSCAP_DISABLE_DEBUG_PTR_TYPES=1 -DD_INO=d_ino
-DMOZ_OJI_REQUIRE_THREAD_SAFE_ON_STARTUP=1 -DSTDC_HEADERS=1
-DHAVE_ST_BLKSIZE=1 -DHAVE_SIGINFO_T=1 -DHAVE_INT16_T=1 -DHAVE_INT32_T=1
-DHAVE_INT64_T=1 -DHAVE_UINT=1 -DHAVE_UINT16_T=1 -DHAVE_DIRENT_H=1
-DHAVE_SYS_BYTEORDER_H=1 -DHAVE_MEMORY_H=1 -DHAVE_UNISTD_H=1
-DHAVE_NL_TYPES_H=1 -DHAVE_MALLOC_H=1 -DHAVE_X11_XKBLIB_H=1
-DHAVE_SYS_STATVFS_H=1 -DHAVE_LIBM=1 -DFUNCPROTO=15 -DHAVE_XSHM=1
-D_REENTRANT=1 -DHAVE_RANDOM=1 -DHAVE_STRERROR=1 -DHAVE_LCHOWN=1
-DHAVE_FCHMOD=1 -DHAVE_SNPRINTF=1 -DHAVE_MEMMOVE=1 -DHAVE_RINT=1
-DHAVE_FLOCKFILE=1 -DHAVE_LOCALTIME_R=1 -DHAVE_STRTOK_R=1
-DHAVE_LANGINFO_CODESET=1 -DHAVE_I18N_LC_MESSAGES=1
-DMOZ_DEFAULT_TOOLKIT=\"gtk\" -DMOZ_WIDGET_GTK=1 -DMOZ_ENABLE_XREMOTE=1
-DMOZ_X11=1 -DMOZ_DISTRIBUTION_ID_UNQUOTED=org.mozilla
-DMOZ_DISTRIBUTION_ID=\"org.mozilla\" -DMOZ_PHOENIX=1 -DMOZ_XUL_APP=1
-DMOZ_APP_NAME=\"firefox\" -DMOZ_ENABLE_COREXFONTS=1
-DMOZ_EXTRA_X11CONVERTERS=1 -DOJI=1 -DIBMBIDI=1 -DMOZ_VIEW_SOURCE=1
-DACCESSIBILITY=1 -DMOZ_XPINSTALL=1 -DMOZ_JSLOADER=1 -DHAVE_GSSAPI_H=1
-DHAVE_GSS_C_NT_HOSTBASED_SERVICE=1 -DMOZ_MATHML=1 -DMOZ_LOGGING=1
-DMOZ_USER_DIR=\".mozilla\" -DMOZ_XUL=1 -DMOZ_PROFILELOCKING=1
-DMOZ_DLL_SUFFIX=\".sl\" -DXP_UNIX=1 -DUNIX_ASYNC_DNS=1
-DJS_THREADSAFE=1 -DNS_PRINT_PREVIEW=1 -DNS_PRINTING=1
-DMOZILLA_LOCALE_VERSION=\"1.7\" -DMOZILLA_REGION_VERSION=\"1.7\"
-DMOZILLA_SKIN_VERSION=\"1.5\" -D_MOZILLA_CONFIG_H_ -DMOZILLA_CLIENT
/mnt/firefox/mozilla/modules/plugin/base/src/nsPluginNativeWindow.cpp
Error 112: "../../../../dist/include/plugin/nptypes.h", line 98 #
Include file
<stdint.h> not found.
#include <stdint.h>
^^^^^^^^^^
the error is fixed by adding '|| defined (HPUX)' to line #52:
#elif defined(_AIX) || defined(__sun) || defined(__osf__) ||
defined(IRIX) || defined(HPUX)
Reproducible: Always
Steps to Reproduce:
this happens while building Firefox 1.0.3 on HP-UX.
Actual Results:
see build output in details| Reporter | ||
Comment 1•20 years ago
|
||
This issue also happens in the Mozilla 1.8.x builds and should be fixed there.
*** This bug has been marked as a duplicate of 239465 ***
Status: UNCONFIRMED → RESOLVED
Closed: 20 years ago
Resolution: --- → DUPLICATE
| Assignee | ||
Updated•6 years ago
|
Component: Build Config → General
Product: Firefox → Firefox Build System
You need to log in
before you can comment on or make changes to this bug.
Description
•