summaryrefslogtreecommitdiff
path: root/audio
AgeCommit message (Collapse)AuthorFilesLines
2012-02-15Fix build on SunOS.hans6-6/+48
2012-02-15Fix build on SunOS, again.hans1-1/+2
2012-02-15REPLACE_SH in installed shell scripts.hans1-1/+3
2012-02-15REPLACE_SH in installed shell script.hans1-1/+3
2012-02-15Fix build on SunOS.hans5-11/+26
2012-02-15Fix build on SunOS.hans26-74/+265
Inspired by the patches used for the native package in OI.
2012-02-15Partially revert previous, the build fix for SunOS was already there.hans1-6/+1
2012-02-15Fix build on SunOS. REPLACE_SH on installed shell script.hans1-1/+7
2012-02-15Fix build on SunOS.hans2-1/+17
2012-02-15REPLACE_SH on installed shell script.hans1-1/+3
2012-02-15REPLACE_BASH also in cddb-tool.hans1-2/+2
2012-02-15Remove SunOS-specific post-install target, not needed anymore.hans1-5/+2
REPLACE_SH on an installed script.
2012-02-09Add SET_LIBDIR=yessbd1-1/+2
2012-02-08Comply the the C++ spec by making a variable that is assigned the resultsbd2-12/+12
of a strchr(const char *, int c) call a constant. (i.e. use obache@ suggestion as a better way to fix the strchr problem.)
2012-02-07Fix the patch that adds NetBSD and Dragonfly by changing 'getPlatform' tosbd2-4/+4
'getPlatform()'. Now libcontrol.so should be built and install on NetBSD and Dragonfly. (PR#45940 shows that its missing)
2012-02-07Avoid a crash if getprotobyname("IP") does return NULL.martin2-20/+44
2012-02-07change the last fix to safe way.obache2-14/+15
2012-02-06Revbump forwiz136-254/+287
a) tiff update to 4.0 (shlib major change) b) glib2 update 2.30.2 (adds libffi dependency to buildlink3.mk) Enjoy.
2012-02-06More casting of strrchr calls.sbd2-1/+15
2012-02-06Include <linux/soundcard.h> on Linux.sbd2-9/+10
2012-02-06Remove '-N' from CFLAGS_linux.sbd2-5/+14
2012-02-06On Linux include <stdint> for uint??_t types.sbd2-7/+8
2012-02-06'nasay' is also install on Linuxsbd2-2/+4
Bump PKGREVISION
2012-02-06Fix build of devrplay.so on Linux.sbd4-1/+63
1) define _GNU_SOURCE before including any system headers 2) libtoolize the buildling of devrplay.so 3) Add PLIST.Linux with devrplay.la in it.
2012-02-051) Use ${PKGMANDIR} when install manpagessbd2-7/+10
2) Use $(LDFLAGS) when linking.
2012-02-05Recursive PKGREVISION bump for audio/fluidsynth BUILDLINK_ABI_DEPENDS bump.sbd5-8/+10
2012-02-05Add missing devel/glib2 buildlink to the buildlink3.mk file.sbd1-2/+3
Bump BUILDLINK_ABI_DEPENDS
2012-02-05Add a cast to a strchr call.sbd2-4/+13
2012-02-05plist fixes:sbd3-7/+23
1) Add PLIST.Linux with Linux only files. 2) Set EXTERNAL_EXTENSION based on OPSYS. 3) Make EXTERNAL_EXTENSION a PLIST_SUBST and add it to files that need it. Bump PKGREVISION
2012-02-05Spellcheck '#elsif' -> '#elif'sbd6-16/+16
2012-02-05Add PLIST.Linux with linux only installed files.sbd2-1/+6
Bump PKGREVISION
2012-02-05Use ${PKGMANDIR} when install manpagessbd4-2/+32
2012-02-05NOT_FOR_PLATFORM+=Linux-*-*sbd1-2/+2
2012-02-05Use $(PKGMANDIR)sbd2-5/+6
2012-02-05Remove '-m486' from COMPILERFLAGS, its not a g++ flag.sbd2-5/+9
2012-02-05Linux fixes:sbd4-7/+34
1) define INFTIM if needed. 2) glibc does not have a <sys/filio.h> 3) Don't build sun audio support on Linux. While here make 'arts' a PKG_SUGGESTED_OPTIONS on Linux.
2012-02-05Include <cstdio> where needed for thinks like snprintf, fopen....sbd4-1/+40
2012-02-05Correct spelling mistake with BUILDLINK_LDADD.dl and it can only be used insbd1-4/+4
a conditional after the inclusion of bsd.pkg.mk.
2012-02-05Include <cstring> for things like strcpy, strlen and strncmp.sbd2-1/+14
2012-02-04Using dlopen unconditionally, so include mk/dlopen.buildlink3.mk andobache1-2/+6
kill -ldl if it is not found.
2012-02-04Add SET_LIBDIR=yessbd1-1/+2
2012-02-04Fix Linux build.sbd6-5/+66
2012-02-04Add a cast to a strrchr call.sbd2-2/+15
2012-02-04$NetBSD$sbd1-2/+3
--- src/Util.cpp.orig 2005-04-17 10:58:09.000000000 +0000 +++ src/Util.cpp @@ -288,7 +288,7 @@ Util :: fileAddDate ( const char * str ) strftime( strdate, 128, "[%m-%d-%Y-%H-%M-%S]", localtime (&now)); // search for the part before the extension of the file name - if ( !(last = strrchr( str, '.')) ) { + if ( !(last = (char *) strrchr( str, '.')) ) { last = (char *) str + strlen( str); }
2012-02-04Add control pluginsbd2-3/+4
Bump PKGREVISION
2012-02-04${PKGMANDIR} fixsbd2-4/+4
2012-02-04If a buildlink transformation of "rm:-ldl" is meant as a build fix forsbd1-2/+2
NetBSD/i386 then only apply it on NetBSD/i386.
2012-02-02Use ${RM} -f to avoid failure if no files are found to be removed.hans1-2/+2
2012-01-30In server/Imakefile add a target for $(VOXWARELIBS) that call make forsbd2-5/+20
the targets directory. This should fix the occasional problem were make complains with "don't know how to make dda/voxware/libvoxware.a"
2012-01-29audio/wsoundprefs: Add libintl during linkingmarino2-4/+12
Symbol libintl_bind_textdomain_codeset is used. Since IMake doesn't seem to acknowledge environment variables, all platforms now directly link lintl rather than just DragonFly.