Activity for Ryan Carsten Schmidt

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #197

    README refers to nonexistent Fig.ad

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #12

    gawk-gd: error: incompatible function pointer types initializing 'awk_value_t *(*const)(int, awk_value_t *, struct awk_ext_func *)' (aka 'struct awk_value *(*const)(int, struct awk_value *, struct awk_ext_func *)') with an expression of type 'awk_value_t *(int, awk_value_t *)' (aka 'struct awk_value *(int, struct awk_value *)') [-Wincompatible-function-pointer-types]

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #11

    Build log

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #11

    gawk-haru: error: incompatible function pointer types initializing 'awk_value_t *(*const)(int, awk_value_t *, struct awk_ext_func *)' (aka 'struct awk_value *(*const)(int, struct awk_value *, struct awk_ext_func *)') with an expression of type 'awk_value_t *(int, awk_value_t *)' (aka 'struct awk_value *(int, struct awk_value *)') [-Wincompatible-function-pointer-types]

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #5

    The attached patch worked for me.

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #9

    Undefined sqlite symbols

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #8

    Incorrect memset size

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #7

    radTimerListDebug declared to return int but doesn't return

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #6

    radProcessQueueStopHandlerList declared to return int but doesn't return

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #5

    error: implicit declaration of function 'radProcessGetNotifyFD' is invalid in C99

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #4

    Web site doesn't exist anymore

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #8

    In fact, identifiers containing __ are reserved by the implementation. You are not permitted to define or undefine or redefine them. In addition to undefining __BIG_ENDIAN__ and __LITTLE_ENDIAN__ in il_endian.h, there are many places in the ResIL code where such identifiers are defined. There are other identifier naming patterns that are also reserved. You should check if you're using any of those as well.

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #16

    I am not well versed in writing cmake files but a quick search suggests using check_c_compiler_flag. It doesn't strike me as an old-cmake vs new-cmake problem. It strikes me as a problem of your CMakeLists.txt adding flags unconditionally when not all compilers support them.

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #17

    Improve detection of Clang and when to add compiler flags

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #16

    Only add flags if compiler supports them

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #15

    Oh thanks! Being able to run cmake directly would certainly fix it. I've also submitted a stopgap fix for MacPorts that might also avoid the problem by running the cmake-unix, cmake-build, and cmake-install targets directly rather than getting to them through the switcher target: https://github.com/macports/macports-ports/pull/27594 I tried briefly to solve the Makefile problem... Several of the targets have rules that invoke multiple commands each, without using || exit $? after each command; however,...

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #15

    Exit status not set correctly if cmake fails

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #11

    I didn't add the pkgconfig dependency because di's only dependency is gettext which doesn't install pkgconfig files. Yes, if we used gmp or libtommath we might need pkgconfig. I'm aware of the libtommath issue and was looking into it. I think this issue can be closed. We got successful builds of di 5.0.3 on all systems (Mac OS X 10.6 and later). Thanks!

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #14

    Thanks, I can confirm this is fixed in 5.0.3.

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #14

    Thanks. I don't see any commits past the tag for 5.0.0 in this repository. When I install 5.0.2 from the tarball and run di --version it says di version 5.0.2 beta. In contrast, 5.0.0 said di version 5.0.0 production. Is 5.0.2 a beta version or stable?

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #11

    I applied this smaller patch and we had successful builds on Mac OS X 10.6, 10.7, and 10.10 and later: https://github.com/macports/macports-ports/blob/0330f15f8f3e3548f4ac5d84ecae37357803d339/sysutils/di/files/CMakeLists.txt.patch We had this failure on OS X 10.8 and 10.9: clang: error: unknown argument: '-fstack-protector-strong' On 10.7 it just warned: clang: warning: argument unused during compilation: '-fstack-protector-strong' On 10.6 there was no problem because we use a newer clang that understands...

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #14

    Installation of di.mo gettext message catalog bypasses destroot

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #11

    That patch looks like it changes a heck of a lot more than just this problem. I'll try a more targeted fix. One option is to define the version in a separate file that contains nothing else. You can easily read such a file from cmake or a Makefile.

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #11

    Right, but if the Makefile is going to call cmake then the one place to define your versions should be in the CMakeLists.txt not the Makefile. Sure, I can apply a patch to the port and see what happens on the build system.

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #11

    On Mac OS X 10.7: $ grep 'typedef.*caddr_t' /usr/include/sys/types.h typedef char * caddr_t; /* core address */ On macOS 12: % grep 'typedef.*caddr_t' /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types/_caddr_t.h typedef char * caddr_t; Presumably what's relevant is that on MacPorts 10.12 buildbot builds it finds sys/quota.h: -- Looking for sys/quota.h -- Looking for sys/quota.h - found whereas on 10.11 and earlier it doesn't: -- Looking for sys/quota.h -- Looking for sys/quota.h...

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #11

    Marius, I'm not sure what you mean when you say CLT are not recommended on Sequoia. Implicit function declarations have been an error since the version of clang included in Xcode 12.0. CMake exists on all versions of macOS in MacPorts. The fact that the ports web site doesn't show the file contents for CMake for some OS versions is likely just a bug in the ports web site. Take any information it provides with a grain of salt. On 10.11: $ egrep ' quotactl' $(find /Library -name quota.h 2>/dev/null)...

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #426

    Correction: the old disk has macOS 10.15, not macOS 15.

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #426

    Unable to find target partition "sda1".

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #425

    Thanks. Your change looks reasonable: https://github.com/stevenshiau/clonezilla/commit/f1f246ab8ac2c0b29afefcf564e4acf54bdde7b0 I won't be able to try it at the moment. I don't want to erase and re-clone the affected drive right now, and I don't have another spare drive handy to try it on.

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #425

    The original 256GB disk: Disk /dev/sdc: 232.89 GiB, 250059350016 bytes, 488397168 sectors Disk model: Sabrent Disk Dev Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 33553920 bytes Disklabel type: gpt Disk identifier: 830DB9E6-83B0-4628-A003-CF84835586AE Device Start End Sectors Size Type /dev/sdc1 40 409639 409600 200M EFI System /dev/sdc2 409640 123114719 122705080 58.5G Apple HFS/HFS+ /dev/sdc3 123114720 124384255...

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #425

    Size of macOS recovery partitions should not be changed

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #25

    Missing versions after 1.2.11

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #24

    incompatible function pointer types

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #26195

    Spam in tcllib discussions

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on discussion Open Discussion

    This error occurs when compiling vtwm 5.5.0 on macOS 12 with Apple Clang 14: add_window.c:463:19: error: implicit declaration of function 'time' is invalid in C99 [-Werror,-Wimplicit-function-declaration] int curtime = time(NULL); ^ To fix it, add #include <time.h>.

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on discussion Open Discussion

    Newer compilers like llvm.org clang 18 consider this to be an error, not a warning: add_window.c:460:12: error: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Wimplicit-int] 460 | static lastwingroup = 0; | ~~~~~~ ^ | int add_window.c:461:12: error: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Wimplicit-int] 461 | static lastwin = 0; | ~~~~~~ ^ | int add_window.c:462:12: error: type specifier missing, defaults...

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on discussion Open Discussion

    This warning occurs when compiling vtwm 5.5.0 on macOS 12 with Apple Clang 14: add_window.c:490:32: warning: converting the result of '<<' to a boolean always evaluates to true [-Wtautological-constant-compare] tmp_win->hints.flags &= !PPosition; ^ /opt/local/include/X11/Xutil.h:105:23: note: expanded from macro 'PPosition' #define PPosition (1L << 2) /* program specified position */ ^

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on discussion Open Discussion

    These warnings occur when compiling vtwm 5.5.0 on macOS 12 with Apple Clang 14: add_window.c:460:12: warning: type specifier missing, defaults to 'int' [-Wimplicit-int] static lastwingroup = 0; ~~~~~~ ^ add_window.c:461:12: warning: type specifier missing, defaults to 'int' [-Wimplicit-int] static lastwin = 0; ~~~~~~ ^ add_window.c:462:12: warning: type specifier missing, defaults to 'int' [-Wimplicit-int] static lasttime = 0; ~~~~~~ ^

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #2

    libintl.h is part of gettext. gettext is not part of Mac OS X so you'll have to install it separately.

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #16

    error: call to undeclared function 'filedlg_show'

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #15

    Duplicate of bug #14 which already has a patch to fix this.

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #22

    Wrong GPL license version in about box

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #21

    Translator credits don't appear in about box because of mismatch between code and .po file

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #20

    glibmm build errors: no member named … in namespace 'Glib'

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #25882

    Spam in tinyxml discussions

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #2472

    I am able to extract if I exclude the bin directory, which is fine since I don't want the pre-compiled binaries: 7za x lzma2405.7z -x'!bin/*'

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #2472

    p7zip 16.02's 7za cannot extract lzma2405.7z

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #25797

    Spam posted by mughalhammad022

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on discussion Help

    /opt/local/include/lqt/lqt_codecinfo.h:247:23: warning: this function declaration is not a prototype [-Wstrict-prototypes] void lqt_registry_init(); ^ void /opt/local/include/lqt/lqt_codecinfo.h:257:26: warning: this function declaration is not a prototype [-Wstrict-prototypes] void lqt_registry_destroy(); ^ void /opt/local/include/lqt/lqt_codecinfo.h:265:24: warning: this function declaration is not a prototype [-Wstrict-prototypes] void lqt_registry_write(); ^ void /opt/local/include/lqt/lqt_codecinfo.h:281:29:...

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on discussion Help

    Where is your issue tracker? clang warns that you have some non-prototypes in your header: /opt/local/include/lqt/quicktime.h:563:20: warning: this function declaration is not a prototype [-Wstrict-prototypes] int quicktime_major(); ^ void /opt/local/include/lqt/quicktime.h:572:20: warning: this function declaration is not a prototype [-Wstrict-prototypes] int quicktime_minor(); ^ void /opt/local/include/lqt/quicktime.h:582:22: warning: this function declaration is not a prototype [-Wstrict-prototypes]...

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #3

    Use cp -R instead of cp -r

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #25734

    My user email alias says 550 unknown user

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #7

    Whether test failures are a concern is up to you! I just wanted to make sure you were aware of them. I can't recall whether the system I was using when I reported this initially was sluggish. Today I'm on a different Mac running macOS 12.7.2 and with gawk-select 1.1.4 I get some different test failures: ======== Starting select tests ======== kill inputfd outputfd nonblock Files ./nonblock.ok and _nonblock differ make[1]: [nonblock] Error 1 (ignored) select Files ./select.ok and _select differ make[1]:...

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #6

    Thank you, I tested gawk-lmdb 1.1.3 on macOS 12.7.2 and it built fine.

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #1445

    As announced a year ago, GitHub has removed the Subversion bridge so you can't use svn:externals to reference GitHub repositories anymore.

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on discussion Open Discussion

    linSmith was added to MacPorts in 2004, back when the project was called DarwinPorts; we changed our name to MacPorts in 2006. Not all of our contributors always inform the upstream developers when their software becomes available in MacPorts, but you do mention the availability of this port here: http://jcoppens.com/soft/linsmith/distros.en.php If you retain this information on your web site, please change the link to https://ports.macports.org/port/linsmith and change "Mac OS X" to "macOS". (Apple...

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on discussion Open Discussion

    Hello, I'm a developer with MacPorts. We have version 0.99.31 of linSmith in MacPorts and it does not build on current versions of macOS (with clang). I noticed 0.99.32 and 0.99.33 were released last year and hoped that the build issues might have been corrected but they have not been. At configure time, this message is printed: configure: WARNING: 'missing' script is too old or missing I can use autoreconf to work around that, but at build time, these errors occur: remote.c:40:37: error: non-void...

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #426

    Agreed, I am seeing the same crash with other software that uses gtk.

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #426

    crash on launch in gdk_x_error

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #12

    @elmimmo, looks like you've attached Makefile.mac from fondu_src-051010.tgz, the latest version in the Files section of this SourceForge project. In that version, running ./configure on macOS just copies Makefile.mac to Makefile and exits. In that version, it looks like the relevant line is: CORE = /System/Library/Frameworks/CoreServices.framework/CoreServices However, that is not the latest version. The latest version is available on this SourceForge project's web page and is called fondu_src-060102.tgz....

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #4

    Thank you for your reply. If you haven't looked at this SourceForge project for ages, does that mean that the primary development site for this software, and the authoritative location for tarballs, has moved elsewhere? If so, where? Or does it mean this project is dead?

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #4

    Nobody knows why these files were deleted?

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #464

    Xcode project doesn't install macOS framework or headers or dynamic library anymore

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #403

    Is this still an issue? This report was closed, then reopened. The URL for SuperTuxKart's bug report appears to have changed to: https://github.com/supertuxkart/stk-code/issues/894 and the URL for the fix appears to have changed to: https://github.com/supertuxkart/stk-code/commit/8dc86308e93b1e25ad605e87975c2f6e0711cfa2 That change does not appear in Irrlicht's 1.8 branch nor trunk (1.9), though I also don't think the proposed change makes any sense. The first part of the change which initializes...

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #463

    property 'wantsLayer' not found on object of type 'id'

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #461

    Yes I imagine that in addition to adding the arm directory and its files, you'd have to tell your various build systems to build those files, and possibly only on ARM systems; I'm not sure. This isn't a Mac-specific issue. Bug #443 was reported on an ARM system running Linux. There's also an edition of Windows for ARM processors that may be affected. I probably won't work on this myself since I don't use irrlicht and don't have an ARM system. My motivation as a MacPorts developer is to fix build...

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #297

    This patch is not correct. For the right fix, see https://sourceforge.net/p/irrlicht/bugs/462/

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #462

    The trunk patch.

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #462

    cannot initialize a parameter of type 'id<NSFileManagerDelegate>' with an rvalue of type 'id<NSApplicationDelegate>'

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #461

    Sure, here's the patch.

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #461

    Undefined Neon symbols building for Apple Silicon

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #459

    Your fix came in while I was writing this—thanks! I haven't made any effort to disable IRR_USE_NON_SYSTEM_ZLIB. I'm just doing a default build of the Xcode project. Is there any documentation for how to use that macro and the releated macros for the other libraries, especially when using the Xcode project? Sounds like this may be what I want in order to use my pre-existing libraries. Angle-bracket include statements (e.g. #include <zlib.h>) search all directories specified with -I in order, except...

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #442

    Please check if the patch I attached to bug #459 fixes it.

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #459

    The attached patch fixes it for me. This may also fix bug #442.

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #460

    Case mismatch in IrrFramework-Info.plist filename

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #459

    Undefined symbols: _inflateValidate

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #4161

    imaxima and imath web site not found

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #135

    Specifically I think it was fixed in https://sourceforge.net/p/freeimage/svn/1809/ . The problem was reported again in https://sourceforge.net/p/freeimage/patches/153/ and the same patch suggested in here was submitted there again. Both of these submitted patches differ from what was committed in r1809. In r1809, the lines that called SwapLong on the elements of ddpfPixelFormat were removed, but in the two submitted patches, those calls were retained and ddpfPixelFormat was just renamed to ddspf....

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #153

    Duplicate of #135, also.

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #153

    The first three hunks of this patch were already committed years before you filed this issue as r1809 but I would ask the maintainer of freeimage to look at the last hunk of the patch to see if that is needed since r1809 did something different there. See https://sourceforge.net/p/freeimage/svn/1809/

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #30

    gmtl-0.6.1.tar.gz file is created when building

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #29

    Build failure when scons uses python 3 (patch attached)

  • Ryan Carsten Schmidt Ryan Carsten Schmidt modified a comment on ticket #28

    I didn't like this patch because it determines either the gcc or the clang version and then uses them as if the two compilers have identical version histories, which they don't. For example, the script adds -fcoalesce-templates if the compiler version is less than 4. That's correct for gcc and incorrect for clang. Instead my patch looks at the preprocessor macros. gcc defines __GNUC__ to the major version and __GNUC_MINOR__ to the minor version. gcc 3 and later also define __GNUC_PATCHLEVEL__ to...

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #28

    I didn't like this patch because it determines either the gcc or the clang version and then uses them as if the two compilers have identical version histories, which they don't. For example, the script adds -fcoalesce-templates if the compiler version is less than 4. That's correct for gcc and incorrect for clang. Instead my patch looks at the preprocessor macros. gcc defines __GNUC__ to the major version and __GNUC_MINOR__ to the minor version. gcc 3 and later also define __GNUC_PATCHLEVEL__ to...

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #262

    version:1:1: error: expected unqualified-id

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #5

    Well, without the period at the end: https://ports.macports.org/port/disktype

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #5

    Update web page to mention availability in MacPorts

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #100

    Here is one possible solution for the abort issue: https://github.com/macports/macports-ports/blob/cfbf212da89fb01c629b60859f1f76c93a76786a/math/tiemu3/files/abort.patch

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #505

    This bug still exists in gdcm 3.0.10. Please apply the patch. It seems like the case of the library name should also be fixed in the find_library call, although it appears to work even with the wrong case. Note also that these changes will make gdcm no longer work with CharLS versions earlier than 2.1.0 on case sensitive filesystems since it was in CharLS 2.1.0 that the file names changed from "CharLS" to "charls". Here is a revised patch addressing these issues: --- CMake/FindCharLS.cmake.orig 2021-10-06...

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #303

    I've reported it to Apple as feedback id FB9866173.

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #303

    I found that in the MacPorts portfile, we were running strip cscope after compilation, and that removing that fixed the problem. I don't know why we were stripping the executable, but we had been doing so ever since cscope was added to MacPorts back in 2003. macOS was a much younger operating system back then and perhaps there was a good reason for stripping things at that time or perhaps it was just a whim of whoever added it. I don't know why stipping the executable is now all of a sudden causing...

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #303

    dyld[39272]: symbol not found in flat namespace '_yylex'

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #6

    Create a bug tracker

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #6

    gawk-select 1.1.2 has the same problem and the same fix works.

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #7

    gawk-select: outputfd and nonblock tests fail on macOS

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #6

    gawk-lmdb: failure to parse headers on macOS

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #5

    gawk-lmdb: basic test fails on macOS

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #341

    configure: error: Could not find libid3tag

  • Ryan Carsten Schmidt Ryan Carsten Schmidt created ticket #340

    Wrong version in configure.ac

  • Ryan Carsten Schmidt Ryan Carsten Schmidt posted a comment on ticket #68

    1.3.0 was released in 2020.

1 >
MongoDB Logo MongoDB