Merge pull request #28 from sezero/rh-patch

SYSCONFDIR fixes for #27
master
Alice R 5 years ago committed by GitHub
commit 7ceb2c1d6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/Makefile.am
  2. 4
      src/read_config.c

@ -1,6 +1,6 @@
# -*- Makefile -*-
AM_CPPFLAGS = -DSYSCONFDIR=\"${sysconfdir}\" ${LIBXMP_CFLAGS} \
AM_CPPFLAGS = -DSYSCONFDIR=\"${sysconfdir}/${PACKAGE_NAME}\" ${LIBXMP_CFLAGS} \
${alsa_CFLAGS} ${pulseaudio_CFLAGS}
AM_CFLAGS = -Wall

@ -17,6 +17,10 @@
#include <sys/unistd.h>
#endif
#if !defined(SYSCONFDIR)
#define SYSCONFDIR "."
#endif
static char driver[32];
static char instrument_path[256];

Loading…
Cancel
Save