libmpcdec: fix cross build

Error without this fix:
```
checking for working memcmp... no
configure: error: working memcmp is not available.
```

+3
+3
pkgs/by-name/li/libmpcdec/package.nix
··· 13 13 sha256 = "1a0jdyga1zfi4wgkg3905y6inghy3s4xfs5m4x7pal08m0llkmab"; 14 14 }; 15 15 16 + # needed for cross builds 17 + configureFlags = [ "ac_cv_func_memcmp_working=yes" ]; 18 + 16 19 meta = { 17 20 description = "Musepack SV7 decoder library"; 18 21 platforms = lib.platforms.unix;