45 lines
1.4 KiB
Plaintext
45 lines
1.4 KiB
Plaintext
$NetBSD: patch-aa,v 1.4 2012/03/02 15:44:54 hans Exp $
|
|
|
|
--- src/billard3d.c.orig 2004-04-24 01:20:49.000000000 +0000
|
|
+++ src/billard3d.c
|
|
@@ -24,7 +24,21 @@
|
|
#include <string.h>
|
|
#include <math.h>
|
|
#include <unistd.h>
|
|
+#include <sys/param.h>
|
|
+#if (defined(__FreeBSD__) && __FreeBSD_version >= 500000) || defined(__DragonFly__) || defined(__NetBSD__)
|
|
+#include <sys/endian.h>
|
|
+#elif defined(__sun)
|
|
+#include <sys/byteorder.h>
|
|
+#define LITTLE_ENDIAN 1234
|
|
+#define BIG_ENDIAN 4321
|
|
+#ifdef _BIG_ENDIAN
|
|
+#define BYTE_ORDER BIG_ENDIAN
|
|
+#else
|
|
+#define BYTE_ORDER LITTLE_ENDIAN
|
|
+#endif
|
|
+#else
|
|
#include <endian.h>
|
|
+#endif
|
|
|
|
#ifndef USE_SDL
|
|
#include <GL/glut.h>
|
|
@@ -5000,7 +5014,7 @@ int main( int argc, char *argv[] )
|
|
|
|
/* config file */
|
|
load_config( &confv, &confc, argv, argc );
|
|
- while( ( act_option = getopt_long_only(confc, confv, "+", long_options, &option_index) ) >= 0){
|
|
+ while( ( act_option = getopt_long(confc, confv, "+", long_options, &option_index) ) >= 0){
|
|
DPRINTF("processing option %d=%s\n",act_option,optarg);
|
|
process_option(act_option);
|
|
}
|
|
@@ -5098,7 +5112,7 @@ int main( int argc, char *argv[] )
|
|
fread( &ball_ball_snd.data[SOUND_NULLOFFS*2], 1, ball_ball_snd.len-SOUND_NULLOFFS*2*2 , f );
|
|
fclose(f);
|
|
|
|
-#if __BYTE_ORDER == __BIG_ENDIAN
|
|
+#if _BYTE_ORDER == BIG_ENDIAN
|
|
{
|
|
char *snd=ball_ball_snd.data;
|
|
for(i=0;i<ball_ball_snd.len;i+=2)
|