prepare autotools source release workflow

This commit is contained in:
Mario Fetka
2026-04-29 20:46:23 +02:00
parent 65d7b2c016
commit 2077123d00
38 changed files with 1592 additions and 433 deletions

View File

@@ -38,14 +38,15 @@
#include <fcntl.h>
#include <netinet/in.h>
#include <sys/types.h>
#include <ncp/ext/socket.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <netdb.h>
#include <net/if_arp.h> /* TODO: linux/if_arp.h */
#include <ncp/kernel/ipx.h>
#include <ncp/kernel/if.h>
#include <ncp/kernel/types.h>
#include "netlink.h"
#include <netipx/ipx.h>
#include "ipx_compat.h"
#include <net/if.h>
#include <sys/types.h>
#include "src/netlink.h"
#include "nls.h"

13
src/ipx_compat.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef IPX_UTILS_IPX_COMPAT_H
#define IPX_UTILS_IPX_COMPAT_H
/*
* Compatibility definitions for standalone builds without ncpfs'
* private kernel header copies.
*/
#ifndef IPXPROTO_IPX
# define IPXPROTO_IPX 0
#endif
#endif /* IPX_UTILS_IPX_COMPAT_H */

View File

@@ -12,7 +12,7 @@
#include <unistd.h>
#include <ctype.h>
#include <string.h>
#include <ncp/kernel/ipx.h>
#include <netipx/ipx.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ioctl.h>

View File

@@ -11,8 +11,8 @@
#include <stdlib.h>
#include <string.h>
#include <netinet/in.h>
#include <ncp/kernel/ipx.h>
#include <ncp/kernel/if.h>
#include <netipx/ipx.h>
#include <net/if.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ioctl.h>

View File

@@ -9,8 +9,8 @@
#include <errno.h>
#include <string.h>
#include <netinet/in.h>
#include <ncp/kernel/ipx.h>
#include <ncp/kernel/if.h>
#include <netipx/ipx.h>
#include <net/if.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ioctl.h>

View File

@@ -11,11 +11,11 @@
#include <errno.h>
#include <string.h>
#include <netinet/in.h>
#include <ncp/kernel/ipx.h>
#include <netipx/ipx.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <ncp/kernel/route.h>
#include <net/route.h>
#include "ipxutil.h"

View File

@@ -9,7 +9,7 @@
#include <errno.h>
#include <stdlib.h>
#include <netinet/in.h>
#include <ncp/kernel/ipx.h>
#include <netipx/ipx.h>
#include <sys/types.h>
#include "ipxutil.h"